Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / RadioButtonListCellType Class / RadioButtonListCellType Constructor / RadioButtonListCellType Constructor(String[],String[])
Options to display in the cell specified in a string array
Values for the options specified in a string array
Example


In This Topic
    RadioButtonListCellType Constructor(String[],String[])
    In This Topic
    Creates a new radio button list cell with the specified options and corresponding values.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal items() As String, _
       ByVal values() As String _
    )
    'Usage
     
    
    Dim items() As String
    Dim values() As String
     
    Dim instance As New RadioButtonListCellType(items, values)
    public RadioButtonListCellType( 
       string[] items,
       string[] values
    )

    Parameters

    items
    Options to display in the cell specified in a string array
    values
    Values for the options specified in a string array
    Example
    This example creates a RadioButtonListCellType object, supplies it with items and values and assigns it to the first cell in the sheet. The first item in the list shows up in the cell and appears checked when entering edit mode.
    See Also